Skip to content

Comments

chore(deps): update all non-major dependencies#1549

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#1549
renovate[bot] wants to merge 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 20, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@anthropic-ai/claude-agent-sdk ^0.2.49^0.2.56 age adoption passing confidence
@stacksjs/stx ^0.2.0^0.2.5 age adoption passing confidence
@stripe/stripe-js (source) ^8.7.0^8.8.0 age adoption passing confidence
better-dx ^0.2.5^0.2.6 age adoption passing confidence
bun-query-builder ^0.1.12^0.1.13 age adoption passing confidence
meilisearch ^0.48.0^0.55.0 age adoption passing confidence

Release Notes

anthropics/claude-agent-sdk-typescript (@​anthropic-ai/claude-agent-sdk)

v0.2.56

Compare Source

  • Updated to parity with Claude Code v2.1.56

v0.2.55

Compare Source

  • Updated to parity with Claude Code v2.1.55

v0.2.54

Compare Source

  • Updated to parity with Claude Code v2.1.54

v0.2.53

Compare Source

  • Added listSessions() for discovering and listing past sessions with light metadata

v0.2.52

Compare Source

  • Updated to parity with Claude Code v2.1.52

v0.2.51

Compare Source

  • Updated to parity with Claude Code v2.1.51
  • Fixed SDK crashing with ReferenceError when used inside compiled Bun binaries (bun build --compile)
  • Fixed unbounded memory growth in long-running SDK sessions caused by message UUID tracking never evicting old entries
  • Fixed local slash command output not being returned to SDK clients
  • Added task_progress events for real-time background agent progress reporting with cumulative usage metrics, tool counts, and duration
  • Fixed session.close() in the v2 session API killing the subprocess before it could persist session data, which broke resumeSession()

v0.2.50

Compare Source

  • Updated to parity with Claude Code v2.1.50
stacksjs/stx (@​stacksjs/stx)

v0.2.5

Compare Source

v0.2.4

Compare Source

v0.2.3

Compare Source

stripe/stripe-js (@​stripe/stripe-js)

v8.8.0

Compare Source

Fixes
  • add confirmAmazonPaySetup to the types (#​874)
  • Add optional savePaymentMethod property to value (#​873)
  • publish: preflight hub auth before tagging (#​866)
Changed
  • Update Payment Form types (#​875)
  • Add Enums to options.layout.radios (#​868)
  • Use more specific types for tax ID (#​872)
  • Add lk_vat to tax id types (#​871)
  • add paymentFormConfirmEvent to confirm args type (#​867)
  • Bump lodash from 4.17.21 to 4.17.23 in /examples/rollup (#​858)
stacksjs/better-dx (better-dx)

v0.2.6

Compare Source

stacksjs/bun-query-builder (bun-query-builder)

v0.1.13

Compare Source

meilisearch/meilisearch-js (meilisearch)

v0.55.0: 🌻

Compare Source

⚠️ Experimental

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @​Copilot, @​Ritinpaul, @​Strift, @​dependabot[bot], @​flevi29, and dependabot[bot]! 🎉

v0.54.0: 🌻

Compare Source

🚀 Enhancements
🐛 Bug Fixes
⚙️ Maintenance/misc

Thanks again to @​Strift, @​dependabot[bot], @​flevi29, @​jezzzm, and dependabot[bot]! 🎉

v0.53.0

Compare Source

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @​Strift and @​flevi29! 🎉

v0.52.0

Compare Source

🚀 Enhancements
⚙️ Maintenance/misc

Thanks again to @​Strift, @​flevi29, and dependabot[bot]! 🎉

v0.51.0: 🦘

Compare Source

This version introduces features released in Meilisearch v1.15.0.

⚠️ Breaking changes
🚀 Enhancements
⚙️ Maintenance/misc

Thanks again to @​Strift, @​brunoocasali, @​curquiza, @​flevi29, @​nicolasvienot! 🎉

v0.50.0: 🦫

Compare Source

This release adds new features related to Meilisearch 1.14.

⚠️ Breaking changes
Refactored HTTP client (#​1741) @​flevi29

[!important]
The Meilisearch class now accepts a requestInit parameter instead of requestConfig. Parameters of requestInit are the same, except it no longer accepts signal.

const client = new Meilisearch({
  host: 'https://edge.meilisearch.com',
  apiKey: 'your meilisearch API key',
  // `requestConfig` is removed, use `requestInit` instead
  requestInit: {
    headers: {
      "A-Http-Header": "The Value",
    },
  },
});
Refactored tasks and batches usage (#​1825) @​flevi29

[!important]
TaskClient and BatchClient are no longer exported

Migration guide: tasks promises now have a "waitTask" method

// Replace this 
const task = client.createIndex("test");
 await client.waitForTask(task.taskUid);
 
// By this
await client.createIndex("test").waitTask();

Migration guide: access TaskClient via the tasks property

// Replace this
client.getTask(1)
client.tasks.getTask(1)

// by this
client.getTasks()
client.tasks.getTasks()

[!note]
TaskClient is also accessible through the Index class, e.g., client.index('myindex').tasks

Migration guide: access BatchClient via the batches property

// Replace this
client.getBatch(1)
client.batches.getBatch(1)

// By this
client.getBatches()
client.batches.getBatches()

[!note]
BatchClient is also accessible through the Index class, e.g., client.index('myindex').batches

Updated exported types

[!important]

  • Removed Batch, EnqueuedTask, and Task classes. The types are still exported!
  • Date properties on Batch, EnqueuedTask, and Task are now string. They can be converted to a date using e.g. new Date(string)
  • Renamed MeiliSearchTimeOutError to MeiliSearchRequestTimeOutError
  • Renamed TasksQuery to TasksOrBatchesQuery
🚀 Enhancements
🐛 Bug Fixes
⚙️ Maintenance/misc

Thanks again to @​Barabasbalazs, @​Strift, @​consoleLogIt, and @​flevi29! 🎉

v0.49.0: 🕊️

Compare Source

This version introduces features released on Meilisearch v1.13.0 🎉

✨ New
🐛 Bug Fixes
⚙️ Maintenance/misc

Thanks again to @​flevi29 and @​Strift! 🎉

v0.48.2: 🌻

Compare Source

🐛 Bug Fixes

Thanks again to @​flevi29, @​meili-bors[bot] ! 🎉

v0.48.1: 🌻

Compare Source

🐛 Bug Fixes

Thanks again to @​flevi29, @​meili-bors[bot] ! 🎉


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@what-the-diff
Copy link

what-the-diff bot commented Feb 20, 2026

PR Summary

  • Upgraded Bun Software Version
    The version of Bun software that our system uses has been upgraded from 1.3.1 to 1.3.9. This change will help us benefit from the latest features and optimizations included in the new version, potentially improving system performance and stability. This update was applied in several parts of our system workflow.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 032cfb0 to cec6127 Compare February 20, 2026 16:02
@renovate renovate bot changed the title chore(deps): update dependency bun to v1.3.9 chore(deps): update all non-major dependencies Feb 20, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 940f629 to c7eaa82 Compare February 20, 2026 16:40
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update dependency mysql2 to ^3.17.4 Feb 20, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c7eaa82 to 32a9681 Compare February 20, 2026 17:14
@renovate renovate bot changed the title chore(deps): update dependency mysql2 to ^3.17.4 chore(deps): update all non-major dependencies Feb 20, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 32a9681 to 8672b10 Compare February 20, 2026 22:37
@renovate renovate bot added minor and removed patch labels Feb 20, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8672b10 to 0ba147d Compare February 21, 2026 02:36
@renovate renovate bot added patch and removed minor labels Feb 21, 2026
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 5cf69fe to 16d0546 Compare February 24, 2026 11:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 43aa0dd to 1e71581 Compare February 25, 2026 03:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e71581 to 089480b Compare February 25, 2026 09:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants